home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung
/
Power-Programmierung (Tewi)(1994).iso
/
magazine
/
msysjour
/
vol06
/
02
/
winmem32
/
callfrnt.asm
< prev
next >
Wrap
Assembly Source File
|
1991-02-28
|
448b
|
26 lines
;
; These routines provide FAR returns to the Windows front end from
; the kernel.
; Assembled using Phar Lap's 386|ASM
;
pmcode segment byte public use32
pmcode ends
extrn action:near
pmcode segment
assume cs:pmcode
; Routine to evaluate a expression
public actionF
actionF proc far
call action
ret
actionF endp
pmcode ends
end